home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 60 / 60.xpi / chrome / webdeveloper.jar / content / webdeveloper / stylesheets / display_ruler.css < prev    next >
Cascading Style Sheet File  |  2009-06-30  |  2KB  |  79 lines

  1. *
  2. {
  3.     cursor: crosshair !important;
  4. }
  5.  
  6. #webdeveloper-ruler
  7. {
  8.     -moz-opacity: 0.5 !important;
  9.     -moz-outline: 1px solid #ff0000 !important;
  10.     background-color: #cccccc !important;
  11.     background-image: url(chrome://webdeveloper/content/images/features/ruler.png) !important;
  12.     border-style: none !important;
  13.     height: 0;
  14.     left: 0;
  15.     margin: 0 !important;
  16.     opacity: 0.5 !important;
  17.     outline: 1px solid #ff0000 !important;
  18.     padding: 0 !important;
  19.     position: absolute !important;
  20.     top: 0;
  21.     width: 0;
  22.     z-index: 999 !important;
  23. }
  24.  
  25. #webdeveloper-ruler > div > div
  26. {
  27.     background-color: #666666 !important;
  28.     border-color: #ff0000 !important;
  29.     border-style: solid !important;
  30.     height: 15px !important;
  31.     margin: 0 !important;
  32.     padding: 0 !important;
  33.     position: absolute !important;
  34.     width: 15px !important;
  35. }
  36.  
  37. #webdeveloper-ruler-container
  38. {
  39.     border-style: none !important;
  40.     cursor: move !important;
  41.     height: 100% !important;
  42.     margin: 0 !important;
  43.     overflow: hidden !important;
  44.     padding: 0 !important;
  45.     position: relative !important;
  46.     width: 100% !important;
  47. }
  48.  
  49. #webdeveloper-ruler-north-east
  50. {
  51.     border-width: 0 0 1px 1px !important;
  52.     cursor: ne-resize !important;
  53.     right: 0 !important;
  54.     top: 0 !important;
  55. }
  56.  
  57. #webdeveloper-ruler-north-west
  58. {
  59.     border-width: 0 1px 1px 0 !important;
  60.     cursor: nw-resize !important;
  61.     left: 0 !important;
  62.     top: 0 !important;
  63. }
  64.  
  65. #webdeveloper-ruler-south-east
  66. {
  67.     border-width: 1px 0 0 1px !important;
  68.     bottom: 0 !important;
  69.     cursor: se-resize !important;
  70.     right: 0 !important;
  71. }
  72.  
  73. #webdeveloper-ruler-south-west
  74. {
  75.     border-width: 1px 1px 0 0 !important;
  76.     bottom: 0 !important;
  77.     cursor: sw-resize !important;
  78.     left: 0 !important;
  79. }